home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_02 / allison / widedemo.c < prev   
C/C++ Source or Header  |  1994-11-30  |  324b  |  20 lines

  1. LISTING 3 - Illustrates wide character strings
  2. #include <stddef.h>
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.     char str[] = "hello";
  8.     wchar_t wcs[] = L"hello";
  9.  
  10.     printf("sizeof str = %d\n",sizeof str);
  11.     printf("sizeof wcs = %d\n",sizeof wcs);
  12.     return 0;
  13. }
  14.  
  15. /* Output:
  16. sizeof str = 6
  17. sizeof wcs = 12
  18. */
  19.  
  20.